aboutsummaryrefslogblamecommitdiffstats
path: root/test/bruisertest/test.cpp
blob: 2e39dd931d4e426ae9c2d35b5c2bfedd1e5cf201 (plain) (tree)
1
2
3
4
5
6
 
     

                   
      
 

















                                     
     



                          
      
 
           
 
#if 0
#include <fstream>
#include <iostream>
#endif

namespace devi
{
  class LOCO
  {
    public:
      LOCO () {}

      void lupo (void)
      {
        int a = 1;
        int b = 2;
        int c = 3;
      }
  };
}

int main(int argc, const char **argv)
{
#if 0
  std::ofstream myfile;
  myfile.open("./touch");
  myfile << "line one.\n";
  myfile.close();
#endif

  return 0;
}