mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
11 lines
177 B
C++
11 lines
177 B
C++
// -*- c++ -*-
|
|
|
|
//codesnippet virtfuncvirt
|
|
class VirtualVector {
|
|
private:
|
|
public:
|
|
virtual void setlinear(float) = 0;
|
|
virtual float operator[](int) = 0;
|
|
};
|
|
//codesnippet end
|