Skip to content
Snippets Groups Projects
Commit d9ee555c authored by Andrea Valassi's avatar Andrea Valassi Committed by cdelort
Browse files

Fix IDatabase.h warning from "#ifndef COOL400CPP11ENUM" (CORALCOOL-2804).

This is really only relevant for the COOL29x branch.

git-svn-id: https://svnweb.cern.ch/trac/lcgcool/changeset/19720 4525493e-7705-40b1-a816-d608a930855b
parent 2bf0752b
No related branches found
No related tags found
No related merge requests found
......@@ -107,17 +107,23 @@ namespace cool
/// This is similar to the COOL1.3.3 API (with IRecordSpecification
/// instead of ExtendedAttributeListSpecification), for easier porting of
/// user code, but it is likely to be removed in a future COOL release.
COOL_DEPRECATED
#ifndef COOL400CPP11ENUM
COOL_DEPRECATED // NB remove embedded directives (CORALCOOL-2804)
( virtual IFolderPtr createFolder
( const std::string& fullPath,
const IRecordSpecification & payloadSpec,
const std::string& description = "",
#ifndef COOL400CPP11ENUM
FolderVersioning::Mode mode = FolderVersioning::SINGLE_VERSION,
FolderVersioning::Mode mode = FolderVersioning::SINGLE_VERSION,
bool createParents = false ) ) = 0;
#else
COOL_DEPRECATED // NB remove embedded directives (CORALCOOL-2804)
( virtual IFolderPtr createFolder
( const std::string& fullPath,
const IRecordSpecification & payloadSpec,
const std::string& description = "",
FolderVersioning::Mode mode = FolderVersioning::Mode::SINGLE_VERSION,
#endif
bool createParents = false ) ) = 0;
#endif
#endif
/// Does this folder exist?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment