SoDaRadio-5.0.3-master:8901fb5
FindHome_Test.cxx
Go to the documentation of this file.
1 #include "../src/FindHome.hxx"
2 #include <boost/format.hpp>
3 #include <iostream>
4 
5 int main(int argc, char * argv[])
6 {
7  (void) argc; (void) argv;
8  std::string myhome = findHome();
9 
10  std::cerr << "My home is [" << myhome << "]" << std::endl;
11 }
std::string findHome()
Find the directory in which the calling program resides.
Definition: FindHome.cxx:50
int main(int argc, char *argv[])