summaryrefslogtreecommitdiffstats
path: root/examples/cpp/Enum_ComputerSystem.cpp
diff options
context:
space:
mode:
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;
-}