Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. SSLColumn(int n=2)
  2. {
  3. int m_space[n];
  4. m_capacity = n; m_start = &m_col[0];
  5. SSLColumn* m_Col = new SSLColumn[n];
  6. for(int i =0;i < n; i++)
  7. {
  8. m_Col[i]= new SSLcolumn();
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement