You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
298 B
C++
20 lines
298 B
C++
#pragma once
|
|
#include "EntityStratiUnit.h"
|
|
#include <iostream>
|
|
#include <list>
|
|
using namespace std;
|
|
class CEntityWell
|
|
{
|
|
public:
|
|
CEntityWell();
|
|
~CEntityWell();
|
|
|
|
public:
|
|
CString _WellName;
|
|
double _LocationX;
|
|
double _LocationY;
|
|
//Graphics _Graphics;
|
|
list<CEntityStratiUnit*> m_StratiUnits;
|
|
};
|
|
|