2002-08-01 05:28:06 +00:00
|
|
|
/***************************************************************************
|
|
|
|
qgscustomsymbol.h - description
|
|
|
|
-------------------
|
|
|
|
begin : Sat Jul 27 2002
|
|
|
|
copyright : (C) 2002 by Gary E.Sherman
|
|
|
|
email : sherman at mrcc dot com
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
2004-10-16 21:59:14 +00:00
|
|
|
/* $Id$ */
|
2002-08-01 05:28:06 +00:00
|
|
|
#ifndef QGSCUSTOMSYMBOL_H
|
|
|
|
#define QGSCUSTOMSYMBOL_H
|
|
|
|
|
2003-06-04 02:04:25 +00:00
|
|
|
#include "qgssymbol.h"
|
2002-08-01 05:28:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*@author Gary E.Sherman
|
|
|
|
*/
|
|
|
|
|
|
|
|
class QgsCustomSymbol : public QgsSymbol {
|
|
|
|
public:
|
|
|
|
QgsCustomSymbol();
|
|
|
|
~QgsCustomSymbol();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|