summaryrefslogtreecommitdiff
path: root/SDL_Core/doc/doxygen/components/SmartObjects/Smart Objects Types/Value representation.txt
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Core/doc/doxygen/components/SmartObjects/Smart Objects Types/Value representation.txt')
-rw-r--r--SDL_Core/doc/doxygen/components/SmartObjects/Smart Objects Types/Value representation.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/SDL_Core/doc/doxygen/components/SmartObjects/Smart Objects Types/Value representation.txt b/SDL_Core/doc/doxygen/components/SmartObjects/Smart Objects Types/Value representation.txt
deleted file mode 100644
index 6505ae6f4..000000000
--- a/SDL_Core/doc/doxygen/components/SmartObjects/Smart Objects Types/Value representation.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-/*! \page components_smartobjects_types_repr Type value representation methods for SmartObjects
-
-As alternative to the type casts NsSmartDeviceLink::NsSmartObjects::CSmartObject class defines set of usable methods that allow to represent object values as desired type. Use of these methods may change code style and readability but functionally it completely similar to the type casts of Smart Objects.
-
-Example:
-
-<pre>
-NsSmartDeviceLink::NsSmartObjects::CSmartObject obj;
-
-obj[0] = 1;
-
-obj[1] = true;
-
-obj[2] = 'a';
-
-obj[3] = 3.14;
-
-int i = obj[0].asInt();
-
-char c = obj[1].asChar();
-
-double d = obj[2].asDouble();
-</pre>
-
-*/