C++
enum PathOption { kNoPath = 1, kRelativePath = 2, kAbsolutePath = 3, kPathAndFile = 4 };
File
acdb.h
Members
| Members | Description |
|---|---|
| kNoPath | Don't store path |
| kRelativePath | Store relative path |
| kAbsolutePath | Store absolute path |
| kPathAndFile | Store path and file |
Description
This enum represents path options.