Поиск стандартных каталогов
This commit is contained in:
17
examples/filesystem/01_minimal/minimal.cpp
Normal file
17
examples/filesystem/01_minimal/minimal.cpp
Normal file
@ -0,0 +1,17 @@
|
||||
#include "filesystem/paths.hpp"
|
||||
|
||||
namespace MF = myx::filesystem;
|
||||
|
||||
|
||||
int main( int argc, char** argv )
|
||||
{
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
MF::Paths paths;
|
||||
|
||||
paths.updatePaths();
|
||||
paths.makePaths();
|
||||
paths.findConfigFile( "test" );
|
||||
|
||||
return( 0 );
|
||||
}
|
Reference in New Issue
Block a user