view include/track/constants.h @ 135:0a458cb26ff4

filesystem: move to using std::filesystem after C++17 switch old compilers will croak compiling this, but it's not like we *really* need to support them (they probably croak compiling Qt as well)
author Paper <mrpapersonic@gmail.com>
date Thu, 09 Nov 2023 18:01:56 -0500
parents 39521c47c7a3
children
line wrap: on
line source

#ifndef __track__constants_h
#define __track__constants_h
#include <string>
#include <vector>

namespace Track {
namespace Constants {

extern const std::vector<std::string> default_media_extensions;
extern const std::vector<std::string> default_media_players;

}
}

#endif // __track__constants_h