Merge "Update example" into tizen_2.1
[platform/framework/native/appfw.git] / inc / FBaseUtilScanner.h
index 05bfba9..fe9b4fe 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -52,20 +51,20 @@ namespace Tizen { namespace Base { namespace Utility
  *
  *     ret = scan.IsNextTokenConvertibleToSignedChar();        //ret true
  *     signed char val;
- *  scan.GetNextSignedChar(val);       //val 1
+ *     scan.GetNextSignedChar(val);    //val 1
  *
  *     ret = scan.IsNextTokenConvertibleToShort(10);   //ret true
  *     short shortVal;
- *  scan.GetNextShort(shortVal);       //shortVal 12
+ *     scan.GetNextShort(shortVal);    //shortVal 12
  *
  *     ret = scan.IsNextTokenConvertibleToInt(10);     //ret false
  *     ret = scan.IsNextTokenConvertibleToFloat();     //ret true
  *     float floatVal;
- *  scan.GetNextFloat(floatVal);       //floatVal 34.5
+ *     scan.GetNextFloat(floatVal);    //floatVal 34.5
  *
  *     ret = scan.IsNextTokenConvertibleToInt(16);     //ret true
  *     int intVal;
- *  scan.GetNextInt(intVal, 16);       //intVal 88
+ *     scan.GetNextInt(intVal, 16);    //intVal 88
  *
  *     ret = scan.IsNextTokenConvertibleToBool();      //ret true
  *     scan.GetNextBool(ret);  //ret false