26 lines
691 B
C++
26 lines
691 B
C++
//----------------------------------------------------------------------------
|
||
//
|
||
// Copyright (C) 2008 Intel Corporation
|
||
//
|
||
// File: EventLogReaderFlow.h
|
||
//
|
||
// Contents: API code for Intel(R) Active Management Technology
|
||
// (Intel<65> AMT) EventLogReader Sample.
|
||
//
|
||
// Notes: This file contains the EventLogReaderFlow class definition.
|
||
//
|
||
//----------------------------------------------------------------------------
|
||
|
||
#ifndef EVENTLOGREADER_FLOW_H
|
||
#define EVENTLOGREADER_FLOW_H
|
||
|
||
#include <string>
|
||
#include "CimWsman.h"
|
||
|
||
using namespace std;
|
||
using namespace Intel::WSManagement;
|
||
|
||
void ReadRecords(ICimWsmanClient * wsmanClient);
|
||
|
||
#endif //EVENTLOGREADER_FLOW_H
|