|
Revision 44, 0.6 kB
(checked in by aarti_pl, 4 years ago)
|
- line endings
|
| Line | |
|---|
| 1 |
/******************************************************************************* |
|---|
| 2 |
|
|---|
| 3 |
License: Boost Software License, v. 1.0 |
|---|
| 4 |
Academic Free License, v. 3.0 |
|---|
| 5 |
BSD License |
|---|
| 6 |
|
|---|
| 7 |
Authors: Marcin Kuszczak, www.zapytajmnie.com (author's christian site) |
|---|
| 8 |
|
|---|
| 9 |
Version: 0.9.1 |
|---|
| 10 |
Date: 30-Apr-2008 |
|---|
| 11 |
|
|---|
| 12 |
History: 0.9.1 (30-Apr-2008) - initial public version |
|---|
| 13 |
|
|---|
| 14 |
******************************************************************************/ |
|---|
| 15 |
|
|---|
| 16 |
module examples.database.TestSchema; |
|---|
| 17 |
|
|---|
| 18 |
import doost.api.Common; |
|---|
| 19 |
import doost.database.Schema; |
|---|
| 20 |
|
|---|
| 21 |
const string sch = import("TestSchema.schema"); |
|---|
| 22 |
|
|---|
| 23 |
const string val = schema(sch); |
|---|
| 24 |
pragma(msg, val); |
|---|
| 25 |
mixin(val); |
|---|