operator << (wxString, wxPoint)
This commit is contained in:
parent
a881ede8fb
commit
9daeed6f45
|
@ -356,6 +356,17 @@ class WinEDA_DrawPanel;
|
||||||
/* COMMON.CPP */
|
/* COMMON.CPP */
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Operator << overload
|
||||||
|
* outputs a point to the argument string in a format resembling
|
||||||
|
* "@ (x,y)
|
||||||
|
* @param aString Where to put the text describing the point value
|
||||||
|
* @param aPoint The point to output.
|
||||||
|
* @return wxString& - the input string
|
||||||
|
*/
|
||||||
|
wxString& operator << ( wxString& aString, const wxPoint& aPoint );
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function ProcessExecute
|
* Function ProcessExecute
|
||||||
* runs a child process.
|
* runs a child process.
|
||||||
|
|
Loading…
Reference in New Issue