Project:Cainiao_Estation

This commit is contained in:
e2hang
2025-08-11 00:20:16 +08:00
parent 5e70ee5bb3
commit 240cf86644
15 changed files with 841 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include <iostream>
#include "user.h"
#include "package.h"
#include "stock.h"
class Package;
class Method {
private:
Package* pkg;
double money;
bool danger;
public:
Method();
Method(Package* x, double m, bool b);
void fee();
void set_yndanger(bool flag);
};