#include "classdesc_access.h"
#include "item.h"
#include "slider.h"
#include <vector>
#include <cairo/cairo.h>
#include <arrays.h>
#include "polyBase.h"
#include "polyPackBase.h"
#include <pack_base.h>
#include "operationType.h"
#include "operationBase.cd"
#include "operationBase.xcd"
Go to the source code of this file.
|
class | minsky::OperationBase |
|
class | minsky::OperationPtr |
| shared_ptr class for polymorphic operation objects. Note, you may assume that this pointer is always valid, although currently the implementation doesn't guarantee it (eg reset() is exposed). More...
|
|
|
std::ostream & | operator<< (std::ostream &x, const std::vector< int > &y) |
|
◆ operator<<()
std::ostream& operator<< |
( |
std::ostream & |
x, |
|
|
const std::vector< int > & |
y |
|
) |
| |
|
inline |
Definition at line 127 of file operationBase.h.
129 for (std::size_t i=0; i<y.size(); ++i)
130 x<<(i==0?
"":
" ")<<y[i];