Revision: | 1.2 |
Committed: | Mon Mar 27 14:01:02 2006 UTC (19 years, 1 month ago) by gcodispo |
Branch: | MAIN |
CVS Tags: | BOSS_4_1_4, BOSS_4_1_3, BOSS_4_1_2, BOSS_4_1_1, BOSS_4_1_0, BOSS_4_0_11, BOSS_4_0_10, BOSS_4_0_9, BOSS_4_0_8, BOSS_4_0_7, BOSS_4_0_6, BOSS_4_0_5, BOSS_4_0_4, BOSS_4_0_3, BOSS_4_0_2, BOSS_4_0_1, BOSS_4_0_0 |
Changes since 1.1: | +1 -1 lines |
Log Message: | Overall code review: many #include substituted by forward declarations. Now only $BOSSDIR/BossClient/include has to be provided to compile a program using API. Should we have a $BOSSDIR/include with only *.h really needed? |
# | Content |
---|---|
1 | #include<iostream> |
2 | #include<string> |
3 | #include"BossAdministratorSession.h" |
4 | |
5 | int main(int argc, char **argv) |
6 | { |
7 | |
8 | BossAdministratorSession bas; |
9 | std::cout << bas.version() << '\n'; |
10 | std::cout << "BOSS version: " << bas.version() << '\n'; |
11 | std::cout << "DB CONFIGURATION...\n"; |
12 | // bas.configureDB(); |
13 | } |