mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 22:02:24 -06:00
30 lines
726 B
C++
30 lines
726 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// ddRemoveColLocator.cpp - Locate table delete button inside a table.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DDREMOVETABLELOCATOR_H
|
|
#define DDREMOVETABLELOCATOR_H
|
|
|
|
#include "hotdraw/locators/hdILocator.h"
|
|
#include "hotdraw/figures/hdIFigure.h"
|
|
|
|
class ddRemoveTableLocator : public hdILocator
|
|
{
|
|
public:
|
|
ddRemoveTableLocator();
|
|
~ddRemoveTableLocator();
|
|
|
|
virtual hdPoint &locate(int posIdx, hdIFigure *owner);
|
|
|
|
protected:
|
|
|
|
private:
|
|
};
|
|
#endif
|