summaryrefslogtreecommitdiffstats
path: root/examples/cpp/Enum_ComputerSystem.cpp
diff options
context:
space:
mode:
authorAnas Nashif <nashif@intel.com>2007-02-09 13:05:24 +0000
committerAnas Nashif <nashif@intel.com>2007-02-09 13:05:24 +0000
commitf77678409618aab144a1359e03299c893ca82ef6 (patch)
tree5b7067fc66a92f56305f04f20b4eeba631b9c482 /examples/cpp/Enum_ComputerSystem.cpp
parent7f25cd1e67cd844169ed85fef3ca8d9b3712a5ad (diff)
downloadwsmancli-f77678409618aab144a1359e03299c893ca82ef6.tar.gz
wsmancli-f77678409618aab144a1359e03299c893ca82ef6.tar.xz
wsmancli-f77678409618aab144a1359e03299c893ca82ef6.zip
renamed
Diffstat (limited to 'examples/cpp/Enum_ComputerSystem.cpp')
-rw-r--r--examples/cpp/Enum_ComputerSystem.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/examples/cpp/Enum_ComputerSystem.cpp b/examples/cpp/Enum_ComputerSystem.cpp
deleted file mode 100644
index 7778552..0000000
--- a/examples/cpp/Enum_ComputerSystem.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <iostream>
-#include <cpp/WsmanClient.h>
-
-using std::cout;
-
-using namespace WsmanClientNamespace;
-int main(int argc, char* argv[])
-{
- WsmanClient client = WsmanClient("http://wsman:secret@192.168.1.41:8889/wsman");
- vector<string> vec;
- client.Enumerate("http:///cws.sblim.sf.net/wbem/wscim/1/cim-schema/2/CWS_Instance", vec );
- for (vector<string>::iterator iter = vec.begin();
- iter != vec.end(); ++iter) {
- cout << "item: " << *iter << "\n";
- }
- return 0;
-}