From f77678409618aab144a1359e03299c893ca82ef6 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Fri, 9 Feb 2007 13:05:24 +0000 Subject: renamed --- examples/cpp/Enum_ComputerSystem.cpp | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 examples/cpp/Enum_ComputerSystem.cpp (limited to 'examples/cpp/Enum_ComputerSystem.cpp') 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 -#include - -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 vec; - client.Enumerate("http:///cws.sblim.sf.net/wbem/wscim/1/cim-schema/2/CWS_Instance", vec ); - for (vector::iterator iter = vec.begin(); - iter != vec.end(); ++iter) { - cout << "item: " << *iter << "\n"; - } - return 0; -} -- cgit