myxlib/examples/filesystem/01_minimal/minimal.cpp

18 lines
240 B
C++
Raw Normal View History

#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 );
}