Added an enum for opening success (E_NOERROR) common to all the imported
This commit is contained in:
parent
aa8cf5f4ae
commit
a52d3149b1
|
|
@ -93,6 +93,9 @@ return lastType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
enum ImporterError {
|
||||||
|
E_NOERROR =0 // No error =0 is the standard for ALL the imported files.
|
||||||
|
};
|
||||||
// simple aux function that returns true if a given file has a given extesnion
|
// simple aux function that returns true if a given file has a given extesnion
|
||||||
static bool FileExtension(std::string filename, std::string extension)
|
static bool FileExtension(std::string filename, std::string extension)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue