예제 #1
0
 std::string MethodPencilKey(
   RC::ConstHandle<CG::Adapter> const &thisAdapter,
   std::string const &name
   )
 {
   return "m:" + thisAdapter->getCodeName() + ":" + name;
 }
예제 #2
0
 std::string ConstructorPencilKey( RC::ConstHandle<CG::Adapter> const &thisAdapter )
 {
   return "c:" + thisAdapter->getCodeName();
 }
예제 #3
0
 std::string AssignOpPencilKey( RC::ConstHandle<CG::Adapter> const &thisAdapter, AssignOpType type )
 {
   return "a:" + thisAdapter->getCodeName() + ":" + assignOpCodeName(type);
 }