1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00
Files
occt/src/OpenGl/OpenGl_LineAttributes.hxx
abv 35c0599a42 0024023: Revamp the OCCT Handle -- automatic
Automatic upgrade by command "occt_upgrade . -handle"
2015-07-11 12:08:01 +03:00

52 lines
1.4 KiB
C++

// Created on: 2011-09-20
// Created by: Sergey ZERCHANINOV
// Copyright (c) 2011-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef _OpenGl_LineAttributes_Header
#define _OpenGl_LineAttributes_Header
#include <OpenGl_Resource.hxx>
#include <Aspect_TypeOfLine.hxx>
#include <Aspect_TypeOfMarker.hxx>
#include <Font_FontAspect.hxx>
class OpenGl_Context;
class OpenGl_LineAttributes : public OpenGl_Resource
{
public:
OpenGl_LineAttributes();
virtual ~OpenGl_LineAttributes();
void Init (const Handle(OpenGl_Context)& theGlCtx);
virtual void Release (OpenGl_Context* theGlCtx);
void SetTypeOfHatch (const int theType) const;
protected:
unsigned int myPatternBase;
public:
DEFINE_STANDARD_RTTI(OpenGl_LineAttributes, OpenGl_Resource)
};
DEFINE_STANDARD_HANDLE(OpenGl_LineAttributes, OpenGl_Resource)
#endif // _OpenGl_LineAttributes_Header