31 lines
584 B
C++
31 lines
584 B
C++
// EPlotSections.h : Declaration of the CEPlotSections
|
|
|
|
#pragma once
|
|
#include "resource.h" // main symbols
|
|
|
|
//#include "SLNKDWF.h"
|
|
using namespace DWFToolkit;
|
|
|
|
//#include "ComObjectEmbed.h"
|
|
#include "myEPlotSectionImpl.h"
|
|
|
|
// CEPlotSections
|
|
|
|
class CEPlotSectionsImpl
|
|
{
|
|
public:
|
|
CEPlotSectionsImpl()
|
|
{
|
|
}
|
|
~CEPlotSectionsImpl();
|
|
|
|
protected:
|
|
CAtlArray<CEPlotSectionImpl *> m_EPlotSections;
|
|
|
|
public:
|
|
BOOL ProcessManifest(DWFToolkit::DWFManifest& rManifest, CString sourceDescription);
|
|
|
|
long get_Count();
|
|
CEPlotSectionImpl *get_Item(LONG i);
|
|
};
|