31 #ifndef EMPTYFSTRING_H    32 #define EMPTYFSTRING_H    34 #if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)    35   #error "Only <final/final.h> can be included directly."    41 #include "final/util/flog.h"    42 #include "final/util/fstring.h"    60     inline static auto getClassName() -> 
FString    62       return "emptyFString";
    65     inline static auto get() -> 
const FString&
    67       static const auto& empty_string = std::make_unique<FString>(
"");
    76 #endif  // EMPTYFSTRING_H Definition: class_template.cpp:25
 
Definition: emptyfstring.h:54