mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-26 07:23:08 +01:00
23 lines
419 B
C++
23 lines
419 B
C++
#ifndef _FILENAME_H_
|
|
#define _FILENAME_H_
|
|
|
|
#include "../common/classes/fb_string.h"
|
|
|
|
class FileName : public Firebird::GlobalStorage
|
|
{
|
|
public:
|
|
explicit FileName(const Firebird::PathName& name);
|
|
~FileName();
|
|
|
|
Firebird::PathName pathName;
|
|
Firebird::PathName directory;
|
|
Firebird::PathName root;
|
|
Firebird::PathName extension;
|
|
bool isAbsolute() const { return absolute; }
|
|
private:
|
|
bool absolute;
|
|
};
|
|
|
|
#endif
|
|
|