mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 04:03:03 +01:00
20 lines
241 B
C++
20 lines
241 B
C++
#ifndef _FILENAME_H_
|
|
#define _FILENAME_H_
|
|
|
|
#include "JString.h"
|
|
|
|
class FileName
|
|
{
|
|
public:
|
|
FileName(JString name);
|
|
~FileName(void);
|
|
|
|
JString pathName;
|
|
JString directory;
|
|
JString root;
|
|
JString extension;
|
|
bool absolute;
|
|
};
|
|
|
|
#endif
|