ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/BOSS/Examples/APItest/adminTest.cpp
Revision: 1.1.1.1 (vendor branch)
Committed: Tue Jan 10 13:06:56 2006 UTC (19 years, 3 months ago) by elmer
Branch: one
CVS Tags: BOSS_v4_0_0-pre2, BOSS_v4_0_0-pre1, two
Changes since 1.1: +0 -0 lines
Log Message:
test import

File Contents

# User Rev Content
1 elmer 1.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 << "Client ID: " << bas.clientID() << '\n';
11     std::cout << "DB CONFIGURATION...\n";
12     // bas.configureDB();
13     }