Number5
Visualisierung 2 Project - Florian Schober (0828151, f.schober@live.com), Andreas Walch (0926780, walch.andreas89@gmail.com)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
main.cpp
Go to the documentation of this file.
1 #include "Application.hpp"
2 
3 
140 void reportWD()
141 {
142  wstring wd(512, 0);
143  _wgetcwd(&wd[0], wd.size());
144  wcout << L"Workind Directory: " << wd.c_str() << endl;
145 }
146 
147 void main()
148 {
149  reportWD();
150 
151  {
152  Application().run();
153  }
154 }
void main()
Definition: main.cpp:147
void reportWD()
Definition: main.cpp:140