FRX SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
AcBrMesh2d.h
Go to the documentation of this file.
1#pragma once
2
3//
4// (C) Copyright 2005-2024 by Graebert GmbH.
5//
6// Permission to use, copy, modify, and distribute this software in
7// object code form for any purpose and without fee is hereby granted,
8// provided that the above copyright notice appears in all copies and
9// that both that copyright notice and the limited warranty and
10// restricted rights notice below appear in all supporting
11// documentation.
12//
13// GRAEBERT PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
14// GRAEBERT SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
15// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. GRAEBERT GMBH
16// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
17// UNINTERRUPTED OR ERROR FREE.
18
19#include "..\acbr17\AcBr.h"
21
22class AcBrMesh2dData;
23class AcRxClass;
24class AcBrEntity;
25
26static AcBrMesh2dControl AcBrMesh2dControlDefault;
27
29{
30public:
33
35 {
36 first = 0;
37 second = AcBrMesh2dControlDefault;
38 }
39
41 {
42 first = (AcBrEntity*)param_1;
43 second = param_2;
44 }
45};
46
48
50typedef void iterator;
51
53{
54public:
57
59private:
62
63private:
64 friend class AcBrMesh2d;
65 value_type mKeyValuePair;
66};
67
ARX_API pair make_pair(const AcBrEntity *&, const AcBrMesh2dControl &)
pair value_type
Definition AcBrMesh2d.h:49
void iterator
Definition AcBrMesh2d.h:50
ErrorStatus
Definition AcBr.h:31
virtual ~AcBrMesh2dFilter()
iterator insert(value_type const &)
AcBrMesh2d(AcBrMesh2d const &)
virtual ~AcBrMesh2d(void)
AcBr::ErrorStatus set(AcBrMesh2dData *)
AcBr::ErrorStatus generate(AcBrMesh2dFilter const &)
ACRX_DECLARE_MEMBERS(AcBrMesh2d)
AcBrMesh2d(void)
AcBrMesh2d & operator=(AcBrMesh2d const &)
AcBr::ErrorStatus get(AcBrMesh2dData *&) const
AcBrMesh2dControl second
Definition AcBrMesh2d.h:32
AcBrEntity * first
Definition AcBrMesh2d.h:31
pair()
Definition AcBrMesh2d.h:34
pair(const AcBrEntity *&param_1, const AcBrMesh2dControl &param_2)
Definition AcBrMesh2d.h:40