13 lines
185 B
C++
Executable File
13 lines
185 B
C++
Executable File
|
|
#include "vp_size.h"
|
|
|
|
namespace vp_objects {
|
|
|
|
vp_size::vp_size(int width, int height): width(width), height(height) {
|
|
|
|
}
|
|
vp_size::~vp_size() {
|
|
|
|
}
|
|
|
|
} |