Changeset 254 for bdm/uibuilder.h

Show
Ignore:
Timestamp:
01/28/09 10:00:56 (15 years ago)
Author:
smidl
Message:

create namespace bdm

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/uibuilder.h

    r248 r254  
    1 #include "libconfig/libconfig.h++" 
    2 #include <itpp/itbase.h> 
    3  
    41#ifndef UIBUILD 
    52#define UIBUILD 
    63 
     4#include "libconfig/libconfig.h++" 
     5#include <itpp/itbase.h> 
     6#include "stat/libBM.h" 
     7 
     8namespace bdm{ 
     9 
    710using namespace libconfig; 
    8 using namespace itpp; 
    911using namespace std; 
    1012 
     
    9294//! Prototype of a UI builder. Return value is by the second argument since it allows some type of type checking. 
    9395template<class T> 
    94 void UIbuild(Setting &S, T** ret){ 
     96                void UIbuild(Setting &S, T** ret){ 
    9597        CHECK_UITYPE(S,TypeGroup); 
    9698        T* tmp; 
     
    113115}; 
    114116 
    115  
    116 Setting& UILoad(const char* fname); 
    117  
     117} 
    118118#endif UIBUILD